home *** CD-ROM | disk | FTP | other *** search
/ Network Support Library / RoseWare - Network Support Library.iso / apidev / tpapi.exe / BUILDNW.PAS < prev    next >
Pascal/Delphi Source File  |  1994-01-14  |  2KB  |  62 lines

  1. {#Z+}
  2. {***************************************************************************}
  3. {** Program : BUILDNW                                                     **}
  4. {***************************************************************************}
  5. {** Version : 0.0             ** Started :   /  /    ** Ended :   /  /    **}
  6. {***************************************************************************}
  7. {******************************** Description ******************************}
  8. {***************************************************************************}
  9. {** Program which uses all netware api units. Just makes it easier to     **}
  10. {** rebuild the library.                                                  **}
  11. {**                                                                       **}
  12. {**                                                                       **}
  13. {**                                                                       **}
  14. {***************************************************************************}
  15. {******************************** Information ******************************}
  16. {***************************************************************************}
  17. {**                                                                       **}
  18. {**                                                                       **}
  19. {**                                                                       **}
  20. {** This code is (c) 1991 - 1994 Antonio Covelli. ALL RIGHTS RESERVED.    **}
  21. {** Portions (c) Novell Inc,                                              **}
  22. {**                                                                       **}
  23. {**                                                                       **}
  24. {***************************************************************************}
  25.  
  26. PROGRAM BUILDNW;
  27.  
  28. {$I NETWARE.INC}
  29. {#Z-}
  30.  
  31. USES
  32.  
  33.   {$IFDEF WINDOWS}
  34.   wincrt,
  35.   {$ENDIF}
  36.   NWDPMI, NWENCRYP,
  37.  
  38.   NETWARE,
  39.  
  40.   NWVAR, NWERROR, NWACCNTG, NWBINDRY,
  41.  
  42.   NWCONN, NWFSYST, NWEATTR, NWFSSERV, NWMESS,
  43.  
  44.   NWPRINT, NWQUEUE, NWSYNCH, NWTTS, NWWRKSTN,
  45.  
  46.   NWMISC;
  47.  
  48. var
  49.  
  50.   Obj : NetwareOBJ;
  51.  
  52. BEGIN
  53.  
  54.   writeln;
  55.   Writeln ('TPAPI version: ', GetTPAPIVersion);
  56.   Obj.Init (true);
  57.   writeln ('VLM Shells present: ', VLMPresent);
  58.   OBJ.Done;
  59.  
  60. END.
  61.  
  62.